home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / tcp_ip / jnos / cmdshelp / tcp < prev    next >
Text File  |  1994-08-09  |  4KB  |  116 lines

  1.  
  2. tcp <subcommand>
  3.  
  4.      These commands are used for the Transmission Control Protocol
  5. service.
  6.  
  7.      Notes:
  8.  
  9.      Attempting outgoing connections to addresses without an
  10.      existing route result in Error number 19.
  11.  
  12.  
  13.     tcp irtt [<milliseconds>]
  14.  
  15.      (B)  Display or set the initial round trip time estimate, in
  16.      milliseconds, to be used  for new TCP connections until they can
  17.      measure and adapt to the actual value.  The default is 5000
  18.      milliseconds (5 seconds).  Increasing irtt when operating over
  19.      slow  channels will avoid the flurry of re-transmissions that
  20.      would otherwise occur as the smoothed estimate settles down at
  21.      the correct value.  Note that this command should be given before
  22.      servers are started in order for it to have effect on incoming
  23.      connections.
  24.      
  25.      TCP also keeps a cache of measured round trip times and mean
  26.      deviations (MDEV) for current and recent destinations.  Whenever
  27.      a new TCP connection is opened, the system first looks in this
  28.      cache.  If the destination is found, the cached IRTT and MDEV
  29.      values are used. If not, the default IRTT value mentioned above
  30.      is used, along with a MDEV of 0.  This feature is fully
  31.      automatic, and it can improve performance greatly when a series
  32.      of connections are opened and closed to a given destination (e.g.
  33.      a series of FTP  file transfers or directory listings).
  34.  
  35.  
  36.     tcp kick <tcb_addr>
  37.  
  38.      If there is unacknowledged data on the send queue of the
  39.      specified TCB, this command forces an immediate retransmission.
  40.      <tcb addr> can be found with the 'tcp status' command.
  41.      
  42.  
  43.     tcp maxwait [<msec>]
  44.  
  45.      Set or show the maximum time for retry timeout in milliseconds.
  46.      Default = 0, no maximum.
  47.      
  48.      
  49.     tcp mss [<size>]
  50.  
  51.      (B)  Display or set the TCP Maximum Segment Size in bytes that
  52.      will be sent on all outgoing TCP connect request (SYN segments).
  53.      This tells the remote end the size of the largest segment
  54.      (packet) it may send.  Changing MSS affects only future
  55.      connections; existing connections are unaffected.  See also the
  56.      section ON MTU, etc.
  57.      
  58.  
  59.     tcp reset <tcb_addr>
  60.  
  61.      Deletes the TCP control block at the specified address.
  62.      
  63.  
  64.     tcp retries [<num>]
  65.  
  66.      (B)  Display or set the number of retries before a tcp connection
  67.      will be reset. Default is 16. This is useful to eliminate idle
  68.      connections that have not been properly shut down. Default = 0,
  69.      there is no maximum, i.e. a connection will never retry out.
  70.      
  71.  
  72.     tcp rtt <tcb_addr> <milliseconds>
  73.  
  74.      Replaces the automatically computed round trip time in the
  75.      specified TCB with the rtt in milliseconds.  This command is
  76.      useful to speed up recovery from a series of lost packets since
  77.      it provides a manual bypass  around the normal backoff
  78.      retransmission timing mechanisms.
  79.      
  80.  
  81.     tcp status [<tcb_addr>]
  82.  
  83.      Without arguments, displays several TCP-level statistics, plus a
  84.      summary  of all  existing  TCP connections, including TCB
  85.      address, send and receive queue sizes, local and remote sockets,
  86.      and connection state. If <tcb addr> is  specified,  a more
  87.      detailed dump of the specified TCB is generated, including send
  88.      and receive sequence numbers and timer information.
  89.  
  90.  
  91.     tcp syndata [yes | no]
  92.  
  93.      (B)  Display or set the tcp syn + data piggybacking flag. Some
  94.      tcp systems cannot handle syn + data together.
  95.      
  96.  
  97.     tcp timertype [linear | exponential]
  98.  
  99.      (B)  Display the current setting or set the timer type backoff
  100.      algorithm.  Default is linear.
  101.      
  102.  
  103.     tcp trace [yes | no]
  104.  
  105.      (B)  Display or set the tcp trace flag on or off.
  106.      
  107.  
  108.     tcp window [<size>]
  109.  
  110.      (B)  Displays or sets the default receive window size in bytes to
  111.      be used  by  TCP when creating new connections. Existing
  112.      connections are unaffected.
  113.      
  114.  
  115.  
  116.